home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 6294 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  786 b 

  1. Path: news.rwth-aachen.de!news
  2. From: georg@acds14.physik.rwth-aachen.de (Georg Kreyerhoff     )
  3. Newsgroups: comp.lang.c
  4. Subject: Re: HELP! Please! Why doesn't this work
  5. Date: 23 Feb 1996 18:24:40 GMT
  6. Organization: RWTH Aachen
  7. Message-ID: <GEORG.96Feb23192440@acds14.physik.rwth-aachen.de>
  8. References: <Pine.ULT.3.91a.960215131933.614A-100000@red5.cac.washington.edu>
  9. NNTP-Posting-Host: acds14.physik.rwth-aachen.de
  10. In-reply-to: "Aaron T. Baldie"'s message of Thu, 15 Feb 1996 13:37:48 -0800
  11.  
  12. In article <Pine.ULT.3.91a.960215131933.614A-100000@red5.cac.washington.edu> "Aaron T. Baldie" <atb@cac.washington.edu> writes:
  13.  
  14. >...
  15. >     solution_array = (char **) malloc(size);   
  16.              
  17.       This should read 
  18.  
  19.         solution_array = (char**)malloc(size * sizof(char*));
  20. >...
  21. gk
  22.  
  23.  
  24.  
  25.  
  26.